projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
755f5c8
)
(memmove): Defined as macro.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 21 Jul 1993 04:37:46 +0000
(
04:37
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 21 Jul 1993 04:37:46 +0000
(
04:37
+0000)
src/m/att3b.h
patch
|
blob
|
history
diff --git
a/src/m/att3b.h
b/src/m/att3b.h
index 7774da4e78fd12bf16e1eceb1dfb13a414bb57f5..8dadec23cfdb5e5cf9a3bcab68185be48c31511a 100644
(file)
--- a/
src/m/att3b.h
+++ b/
src/m/att3b.h
@@
-156,3
+156,8
@@
extern int sign_extend_temp;
#if u3b2
#define NEED_PTEM_H
#endif /* u3b2 */
+
+/* 3b2 does not have memmove, I'm told. */
+/* It is safe to have no parens around the args in the safe_bcopy call,
+ and parens would screw up the prototype decl for memmove. */
+#define memmove(d, s, n) safe_bcopy (s, d, n)